home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / printer / psp24.zip / PSPRINT.DOC < prev    next >
Text File  |  1992-11-01  |  5KB  |  121 lines

  1. PSPRINT.DOC -- Copyright 1990-92 Bob Hayes
  2.  
  3. PROGRAM NAME:     PSPrint
  4.      VERSION:     2.4
  5. RELEASE DATE:     11-1-92
  6.      PURPOSE:     PSPrint will print text files on a PostScript printer from
  7.                   the DOS command line.
  8. REQUIREMENTS:     PostScript printer.
  9.          USE:     PSPRINT TEXTFILE OUTPUT_DEVICE [FONT/OPTION]
  10.                   Where:
  11.                        TEXTFILE (required) is the name of the text file to
  12.                        print.  The file must be in the current directory,
  13.                        you cannot specify a drive and path.  DOS wildcards
  14.                        (* and ?) are valid and all files meeting the spec
  15.                        will be printed.
  16.                        OUTPUT_DEVICE (required) LPT1, LPT2, COM1, or COM2.
  17.                        FONT/OPTION (optional) H for Helvetica (default)
  18.                                               C for Courier
  19.                                               2 two column printing, 220
  20.                                                 lines/page.
  21.                   Example: psprint readme.txt com1 2
  22.  
  23.  
  24. WHY DO I NEED PSPRINT?
  25.  
  26.      You bought that fancy PostScript printer, it can do amazing things with
  27. text and graphics, but if you want to print a copy of your CONFIG.SYS or this
  28. text file, you have to start your word processor, import the file, maybe reset
  29. the margins and font, and then print it.  The print job may take a while as your
  30. word processor sends a pile of information to your printer.  Well, you say
  31. you'll just use the DOS PRINT command to print your file.  If your printer is
  32. hooked to LPT1 and you try the DOS PRINT command, the computer inside of your
  33. printer will take all of the text PRINT sends it, process for a while, and then
  34. go idle.  Why?  DOS PRINT does not know how to speak PostScript, the page
  35. description language your printer uses.  PSPrint knows what to say to your
  36. printer to print text files quickly and easily.
  37.  
  38.  
  39. FEATURES
  40.  
  41.      This version of PSPrint has the following features:
  42.      - prints a page header with the file name, date printed, page number
  43.        and total number of pages,
  44.      - allows printing to LPT1, LPT2, COM1 or COM2,
  45.      - allows the user to cancel the print job,
  46.      - uses standard output for screen writes so screen output can be
  47.        redirected, and
  48.      - has three formatting options.
  49.  
  50.  
  51. FONT/OPTION
  52.  
  53.      The default print option uses 10 point Helvetica as the font and prints 57
  54. lines per page.  This is best for paragraphs of text.  By using C as the
  55. font/option, 10 point Courier will be the font used and again there are 57 lines
  56. of text per page.  This is best when you want tables to line up.  Helvetica is a
  57. proportional font while Courier is a mono-spaced font.  The last option is the
  58. environmental option, that is, if you have to print it out, use as little paper
  59. as possible.  Specifying 2 as the font/option will print 220 lines of text per
  60. page in 2 columns.  The text is printed in 5 point Courier.
  61.  
  62.  
  63. WHY DO I HAVE TO ALWAYS TYPE THE PORT?  MY PRINTER IS ALWAYS HOOKED TO THE
  64. SAME ONE
  65.  
  66.      You don't, write a batch file like this:
  67.  
  68.           echo PSPrint batch file.
  69.           PSPRINT %1 COM1 %2
  70.  
  71. Change COM1 to the port your printer is connected to.
  72.  
  73.  
  74. INSTALLATION
  75.  
  76.      Copy PSPrint to and directory on your path.
  77.  
  78.  
  79. REMOVING PSPRINT
  80.  
  81.      PSPrint does not create or alter any files, to remove it, just delete
  82. it from your disk.
  83.  
  84.  
  85. SHAREWARE
  86.  
  87.       This copyrighted program is being distributed as shareware.  You may try
  88. this program for 30 days, and if you like it, or find it useful, and wish to
  89. continue using it, you are expected to register with the author.  You are free
  90. (and encouraged) to copy this program and distribute it to anyone, as long as no
  91. fee, other than a nominal fee for the disk and shipping/handling, is charged for
  92. the program, and as long as this documentation file accompanies the program. The
  93. registration fee is $5. To register, send your name, address, the program name
  94. and version, where you got the program, and $5 to:
  95.  
  96.             Bob Hayes
  97.             10104 Blue Tee Terr.
  98.             Gaithersburg, MD  20879
  99.  
  100. If you have any questions or comments about the program, please send them to the
  101. above address, or, on CompuServe at 71224,3202.
  102.  
  103.                               Thanks,
  104.                               
  105.                               Bob Hayes
  106.  
  107.  
  108. Product names are trademarks or registered trademarks of their respective
  109. holders.
  110.  
  111.  
  112. WARRANTY AND LEGAL NOTICES
  113.  
  114.      PSPrint is provided AS IS without any warranty, expressed or implied,
  115. including, without limitation, implied warranties of merchantability and
  116. fitness for a particular purpose.  Any use by you of the software is at your
  117. own risk.  In no event shall Bob Hayes be liable for any damages whatsoever
  118. (including, without limitation, damages for loss of business profits, business
  119. interruption, loss of business information, or other pecuniary loss) arising out
  120. of the use or inability to use this product.
  121.